Delete Feedback (v1.0.0)
Delete feedback for a book in the Rating Service
Overview
The Delete Feedback operation allows removing customer feedback from the Rating domain. This endpoint is part of the Rating bounded context and operates on the Feedback aggregate.
Implementation Details
The Delete Feedback operation is implemented using the CQRS pattern with a dedicated command handler:
Loading graph...
Key Components
- DeleteFeedbackCommand: Implements
ICommand
to delete a feedback by ID - Admin Authorization: Endpoint is protected with the Admin policy
- Domain Events:
FeedbackDeletedEvent
is raised when feedback is removed - Integration Events: Events are dispatched to the catalog service for rating recalculation
Domain Context
Within our domain model, Feedback represents a customer’s opinion about a book, which is an important entity in our system. The Feedback aggregate contains:
- Book reference (BookId)
- Customer information (FirstName, LastName)
- Rating value (0-5 scale)
- Comment text
Deleting feedback is a domain operation that:
- Retrieves the feedback entity from the repository
- Calls the
Remove()
method on the Feedback aggregate - Raises a
FeedbackDeletedEvent
with the book ID, rating, and feedback ID - Physically removes the feedback entity from the repository
- Publishes an integration event to notify the Catalog service
Command Flow
When a DELETE request is received:
- The
DeleteFeedbackEndpoint
validates the request and authorization - The
DeleteFeedbackCommand
is dispatched through the mediator - The command handler retrieves the feedback entity from the repository
- If the feedback is not found, a
NotFoundException
is thrown - The
Remove()
method is called on the feedback entity, which registers a domain event - The feedback is removed from the repository
- The unit of work is saved, which publishes the domain events
- The
FeedbackDeletedEventHandler
dispatches an integration event to the Catalog service - A 204 No Content response is returned to the client
Business Rules
- Only administrators can delete feedback (enforced by the Admin policy)
- Feedback must exist to be deleted
- Deleting feedback triggers recalculation of the aggregate rating for the associated book
This operation maintains the integrity of our Rating domain while allowing administrators to manage inappropriate content within the system.
Architecture
DELETE (/api/v1/feedbacks/{id})
Path Parameters
- id (path) (required): The unique identifier of the feedback to delete
Example Usage
curl -X DELETE "https://api.bookworm.com/api/v1/feedbacks/{feedbackId}" \ -H "Authorization: Bearer <admin-jwt-token>"
Responses
204 No Content
Returned when the feedback is successfully deleted.
401 Unauthorized
Returned when the request lacks valid authentication credentials.
403 Forbidden
Returned when the authenticated user does not have administrator privileges.
404 Not Found
Returned when the feedback with the specified ID does not exist.